home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-11 | 1.1 KB | 48 lines | [TEXT/MPS ] |
- ;
- ; File: Packages.a
- ;
- ; Copyright: © 1984-1994 by Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Version: Universal Interfaces 2.0a3 ETO #16, MPW prerelease. Friday, November 11, 1994.
- ;
- ; Bugs?: If you find a problem with this file, send the file and version
- ; information (from above) and the problem description to:
- ;
- ; Internet: apple.bugs@applelink.apple.com
- ; AppleLink: APPLE.BUGS
- ;
- ;
-
- IF &TYPE('__PACKAGES__') = 'UNDEFINED' THEN
- __PACKAGES__ SET 1
-
-
- IF &TYPE('__TYPES__') = 'UNDEFINED' THEN
- include 'Types.a'
- ENDIF
- ; include 'ConditionalMacros.a' ;
-
- listMgr EQU 0 ; list manager
- dskInit EQU 2 ; Disk Initializaton
- stdFile EQU 3 ; Standard File
- flPoint EQU 4 ; Floating-Point Arithmetic
- trFunc EQU 5 ; Transcendental Functions
- intUtil EQU 6 ; International Utilities
- bdConv EQU 7 ; Binary/Decimal Conversion
- editionMgr EQU 11 ; Edition Manager
-
- IF GENERATING68K THEN
- _InitPack: OPWORD $A9E5
- ELSE
- IMPORT InitPack
- ENDIF
-
- IF GENERATING68K THEN
- _InitAllPacks: OPWORD $A9E6
- ELSE
- IMPORT InitAllPacks
- ENDIF
-
- ENDIF ; __PACKAGES__
-